From eac337aae77274ffb7e0196db2cbae7710c3b00b Mon Sep 17 00:00:00 2001 From: "kaf24@firebug.cl.cam.ac.uk" Date: Fri, 1 Jul 2005 15:45:39 +0000 Subject: [PATCH] Other than native i386 code, the page fault handler in the guest for whatever reason ran a stack_trace even though another one is run from die(). Since screen space is limited, duplicating (perhaps long) stack traces seems quite wasteful. Patch removing this duplication below/attached. Signed-off-by: Jan Beulich --- linux-2.6.11-xen-sparse/arch/xen/i386/mm/fault.c | 1 - 1 file changed, 1 deletion(-) diff --git a/linux-2.6.11-xen-sparse/arch/xen/i386/mm/fault.c b/linux-2.6.11-xen-sparse/arch/xen/i386/mm/fault.c index 99e2cccc40..6a89be621b 100644 --- a/linux-2.6.11-xen-sparse/arch/xen/i386/mm/fault.c +++ b/linux-2.6.11-xen-sparse/arch/xen/i386/mm/fault.c @@ -474,7 +474,6 @@ no_context: machine_to_phys(page)); } #endif - show_trace(NULL, (unsigned long *)®s[1]); die("Oops", regs, error_code); bust_spinlocks(0); do_exit(SIGKILL); -- 2.30.2